From 5950ac2cef80cd69306458672adb4755fab60e98 Mon Sep 17 00:00:00 2001 From: "Amir E. Aharoni" Date: Sat, 6 Sep 2014 15:12:33 +0300 Subject: [PATCH] Set AdminEmail field in the installer to explicit ltr Email addresses are usually left-to-right. Change-Id: Iaf2320a17d62ad6c950cf83cc74b2cc020cbb9cb --- includes/installer/WebInstallerPage.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/includes/installer/WebInstallerPage.php b/includes/installer/WebInstallerPage.php index 2e31e41301..b2b0a69124 100644 --- a/includes/installer/WebInstallerPage.php +++ b/includes/installer/WebInstallerPage.php @@ -796,6 +796,9 @@ class WebInstallerName extends WebInstallerPage { ) ) . $this->parent->getTextBox( array( 'var' => '_AdminEmail', + 'attribs' => array( + 'dir' => 'ltr', + ), 'label' => 'config-admin-email', 'help' => $this->parent->getHelpBox( 'config-admin-email-help' ) ) ) . -- 2.20.1